From 134bd98b40000f0d26a9c65c2eb52f4704da5df3 Mon Sep 17 00:00:00 2001 From: Jens Frank Date: Mon, 11 Oct 2004 20:03:24 +0000 Subject: [PATCH] BUG#187, BUG#669 Fix centered images. span apparently didn't work properly --- includes/Skin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Skin.php b/includes/Skin.php index c3cae13e0f..41fa58a9b0 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1738,8 +1738,8 @@ class Skin { } if ( 'center' == $align ) { - $prefix = ''; - $postfix = ''; + $prefix = '
'; + $postfix = '
'; $align = 'none'; } -- 2.20.1